Q_Q ..
export const BREAKPOINTS = {
sm: 320,
md: 576,
lg: 1024
};
export const StyledHomeSection = styled.section`
background-color: yellow;
.title {
color: green;
@media (min-width: ${BREAKPOINTS.md}px) {
color: red;
}
}
.subtitle {
color: blue;
}
`;